ostbuild: Fix -k option to git-mirror
authorColin Walters <walters@verbum.org>
Fri, 8 Jun 2012 20:34:45 +0000 (16:34 -0400)
committerColin Walters <walters@verbum.org>
Fri, 8 Jun 2012 20:47:23 +0000 (16:47 -0400)
src/ostbuild/pyostbuild/vcs.py

index 59d4e0394323fc7e7014b605fa1b8ba67d30ab15..45a5c4a4934cee84f80ddf0f0a7c132478f211e1 100755 (executable)
@@ -144,9 +144,9 @@ def ensure_vcs_mirror(mirrordir, keytype, uri, branch):
 def fetch(mirrordir, keytype, uri, branch, keep_going=False):
     mirror = buildutil.get_mirrordir(mirrordir, keytype, uri)
     last_fetch_path = get_lastfetch_path(mirrordir, keytype, uri, branch)
-    run_sync(['git', 'fetch'], cwd=mirror, log_initiation=False
-    current_vcs_version = run_sync_get_output(['git', 'rev-parse', branch], cwd=mirror,
-                                              none_on_error=keep_going)
+    run_sync(['git', 'fetch'], cwd=mirror, log_initiation=False,
+             none_on_error=keep_going) 
+    current_vcs_version = run_sync_get_output(['git', 'rev-parse', branch], cwd=mirror)
     if current_vcs_version is not None:
         current_vcs_version = current_vcs_version.strip()
         f = open(last_fetch_path, 'w')